0 JBC
↳1 JBC2FIG (⇒)
↳2 JBCTerminationGraph
↳3 FIGtoITRSProof (⇒)
↳4 AND
↳5 IDP
↳6 IDPNonInfProof (⇒)
↳7 IDP
↳8 IDependencyGraphProof (⇔)
↳9 TRUE
↳10 IDP
↳11 IDPtoQDPProof (⇒)
↳12 QDP
↳13 UsableRulesProof (⇔)
↳14 QDP
↳15 QReductionProof (⇔)
↳16 QDP
↳17 MRRProof (⇔)
↳18 QDP
↳19 PisEmptyProof (⇔)
↳20 YES
↳21 IDP
↳22 IDPNonInfProof (⇒)
↳23 AND
↳24 IDP
↳25 IDependencyGraphProof (⇔)
↳26 TRUE
↳27 IDP
↳28 IDependencyGraphProof (⇔)
↳29 TRUE
package Gopher;
public class Gopher {
// by Boyer & Moore (1979)
public static Tree gopher(Tree x) {
if (x == null) return null;
if (x.left == null) return x;
else return gopher(new Tree(x.left.left, new Tree(x.left.right, x.right)));
}
public static void main(String[] args) {
Random.args = args;
Tree x = Tree.createTree(Random.random());
Tree y = gopher(x);
}
}
package Gopher;
public class Random {
static String[] args;
static int index = 0;
public static int random() {
final String string = args[index];
index++;
return string.length();
}
}
package Gopher;
public class Tree {
Tree left;
Tree right;
int value;
public static Tree createTree(final int numElements) {
final Tree t = new Tree(Random.random());
for (int i = 0; i < numElements; i++) {
t.insert(Random.random());
}
return t;
}
public Tree(final Tree l, final Tree r) {
this.left = l;
this.right = r;
}
public Tree(final int val) {
this.value = val;
}
public void insert(final int v) {
if (v <= this.value) {
if (this.left == null) {
this.left = new Tree(v);
} else {
this.left.insert(v);
}
} else {
if (this.right == null) {
this.right = new Tree(v);
} else {
this.right.insert(v);
}
}
}
}
Generated 30 rules for P and 51 rules for R.
Combined rules. Obtained 2 rules for P and 8 rules for R.
Filtered ground terms:
3430_0_insert_Load(x1, x2, x3, x4) → 3430_0_insert_Load(x2, x3, x4)
Cond_3430_0_insert_Load1(x1, x2, x3, x4, x5) → Cond_3430_0_insert_Load1(x1, x3, x4, x5)
Gopher.Tree(x1, x2, x3, x4) → Gopher.Tree(x2, x3, x4)
Cond_3430_0_insert_Load(x1, x2, x3, x4, x5) → Cond_3430_0_insert_Load(x1, x3, x4, x5)
4020_0_insert_Return(x1) → 4020_0_insert_Return
3964_0_insert_Return(x1) → 3964_0_insert_Return
3880_0_insert_Return(x1) → 3880_0_insert_Return
3877_0_insert_Return(x1) → 3877_0_insert_Return
Filtered duplicate args:
3430_0_insert_Load(x1, x2, x3) → 3430_0_insert_Load(x1, x3)
Cond_3430_0_insert_Load1(x1, x2, x3, x4) → Cond_3430_0_insert_Load1(x1, x2, x4)
Cond_3430_0_insert_Load(x1, x2, x3, x4) → Cond_3430_0_insert_Load(x1, x2, x4)
Filtered unneeded arguments:
3730_1_insert_InvokeMethod(x1, x2, x3) → 3730_1_insert_InvokeMethod(x1, x2)
3737_1_insert_InvokeMethod(x1, x2, x3) → 3737_1_insert_InvokeMethod(x1, x2)
Combined rules. Obtained 2 rules for P and 8 rules for R.
Finished conversion. Obtained 2 rules for P and 8 rules for R. System has predefined symbols.
Generated 43 rules for P and 12 rules for R.
Combined rules. Obtained 1 rules for P and 3 rules for R.
Filtered ground terms:
Gopher.Tree(x1, x2, x3) → Gopher.Tree(x2, x3)
3105_0_gopher_NONNULL(x1, x2, x3) → 3105_0_gopher_NONNULL(x2, x3)
4668_0_gopher_Return(x1, x2) → 4668_0_gopher_Return(x2)
4022_0_gopher_Return(x1, x2) → 4022_0_gopher_Return(x2)
3173_0_gopher_Return(x1, x2, x3) → 3173_0_gopher_Return(x2, x3)
Filtered duplicate args:
3105_0_gopher_NONNULL(x1, x2) → 3105_0_gopher_NONNULL(x2)
3173_0_gopher_Return(x1, x2) → 3173_0_gopher_Return(x2)
Finished conversion. Obtained 1 rules for P and 3 rules for R. System has no predefined symbols.
Generated 37 rules for P and 157 rules for R.
Combined rules. Obtained 6 rules for P and 13 rules for R.
Filtered ground terms:
4773_1_createTree_InvokeMethod(x1, x2, x3, x4, x5) → 4773_1_createTree_InvokeMethod(x1, x2, x4)
Gopher.Tree(x1) → Gopher.Tree
4773_0_random_ArrayAccess(x1, x2, x3) → 4773_0_random_ArrayAccess(x2, x3)
Cond_4980_1_createTree_InvokeMethod3(x1, x2, x3, x4, x5, x6, x7) → Cond_4980_1_createTree_InvokeMethod3(x1, x3, x5, x7)
4020_0_insert_Return(x1) → 4020_0_insert_Return
4980_1_createTree_InvokeMethod(x1, x2, x3, x4, x5, x6) → 4980_1_createTree_InvokeMethod(x1, x2, x4, x6)
Cond_4980_1_createTree_InvokeMethod2(x1, x2, x3, x4, x5, x6, x7) → Cond_4980_1_createTree_InvokeMethod2(x1, x3, x5, x7)
3964_0_insert_Return(x1) → 3964_0_insert_Return
Cond_4980_1_createTree_InvokeMethod1(x1, x2, x3, x4, x5, x6, x7) → Cond_4980_1_createTree_InvokeMethod1(x1, x3, x5, x7)
3880_0_insert_Return(x1) → 3880_0_insert_Return
Cond_4980_1_createTree_InvokeMethod(x1, x2, x3, x4, x5, x6, x7) → Cond_4980_1_createTree_InvokeMethod(x1, x3, x5, x7)
3877_0_insert_Return(x1) → 3877_0_insert_Return
4980_0_insert_Load(x1, x2, x3) → 4980_0_insert_Load(x3)
Cond_4808_1_createTree_InvokeMethod(x1, x2, x3, x4, x5, x6) → Cond_4808_1_createTree_InvokeMethod(x1, x2, x3, x5)
4808_0_random_IntArithmetic(x1, x2, x3, x4) → 4808_0_random_IntArithmetic(x2, x3)
4808_1_createTree_InvokeMethod(x1, x2, x3, x4, x5) → 4808_1_createTree_InvokeMethod(x1, x2, x4)
Cond_4773_1_createTree_InvokeMethod(x1, x2, x3, x4, x5, x6) → Cond_4773_1_createTree_InvokeMethod(x1, x2, x3, x5)
3517_0_insert_GT(x1, x2, x3, x4, x5) → 3517_0_insert_GT(x3, x4, x5)
Cond_3517_0_insert_GT3(x1, x2, x3, x4, x5, x6) → Cond_3517_0_insert_GT3(x1, x4, x5, x6)
Cond_3517_0_insert_GT2(x1, x2, x3, x4, x5, x6) → Cond_3517_0_insert_GT2(x1, x4, x5, x6)
Cond_3517_0_insert_GT1(x1, x2, x3, x4, x5, x6) → Cond_3517_0_insert_GT1(x1, x4, x5, x6)
Cond_3517_0_insert_GT(x1, x2, x3, x4, x5, x6) → Cond_3517_0_insert_GT(x1, x4, x5, x6)
Filtered duplicate args:
3517_0_insert_GT(x1, x2, x3) → 3517_0_insert_GT(x2, x3)
Cond_3517_0_insert_GT3(x1, x2, x3, x4) → Cond_3517_0_insert_GT3(x1, x3, x4)
Cond_3517_0_insert_GT2(x1, x2, x3, x4) → Cond_3517_0_insert_GT2(x1, x3, x4)
Cond_3517_0_insert_GT1(x1, x2, x3, x4) → Cond_3517_0_insert_GT1(x1, x3, x4)
Cond_3517_0_insert_GT(x1, x2, x3, x4) → Cond_3517_0_insert_GT(x1, x3, x4)
Filtered unneeded arguments:
4980_1_createTree_InvokeMethod(x1, x2, x3, x4) → 4980_1_createTree_InvokeMethod(x1, x2, x3)
Cond_4980_1_createTree_InvokeMethod(x1, x2, x3, x4) → Cond_4980_1_createTree_InvokeMethod(x1, x2, x3)
Cond_4980_1_createTree_InvokeMethod1(x1, x2, x3, x4) → Cond_4980_1_createTree_InvokeMethod1(x1, x2, x3)
Cond_4980_1_createTree_InvokeMethod2(x1, x2, x3, x4) → Cond_4980_1_createTree_InvokeMethod2(x1, x2, x3)
Cond_4980_1_createTree_InvokeMethod3(x1, x2, x3, x4) → Cond_4980_1_createTree_InvokeMethod3(x1, x2, x3)
Cond_3517_0_insert_GT(x1, x2, x3) → Cond_3517_0_insert_GT(x1)
Cond_3517_0_insert_GT1(x1, x2, x3) → Cond_3517_0_insert_GT1(x1, x2)
3737_1_insert_InvokeMethod(x1, x2, x3) → 3737_1_insert_InvokeMethod(x1, x2)
Cond_3517_0_insert_GT2(x1, x2, x3) → Cond_3517_0_insert_GT2(x1)
Cond_3517_0_insert_GT3(x1, x2, x3) → Cond_3517_0_insert_GT3(x1, x2)
3730_1_insert_InvokeMethod(x1, x2, x3) → 3730_1_insert_InvokeMethod(x1, x2)
Filtered all non-integer terms:
4808_0_random_IntArithmetic(x1, x2) → 4808_0_random_IntArithmetic(x2)
3737_1_insert_InvokeMethod(x1, x2) → 3737_1_insert_InvokeMethod(x1)
3730_1_insert_InvokeMethod(x1, x2) → 3730_1_insert_InvokeMethod(x1)
Filtered all free variables:
4808_1_createTree_InvokeMethod(x1, x2, x3) → 4808_1_createTree_InvokeMethod(x2, x3)
Cond_4808_1_createTree_InvokeMethod(x1, x2, x3, x4) → Cond_4808_1_createTree_InvokeMethod(x1, x3, x4)
4980_1_createTree_InvokeMethod(x1, x2, x3) → 4980_1_createTree_InvokeMethod(x2, x3)
4773_1_createTree_InvokeMethod(x1, x2, x3) → 4773_1_createTree_InvokeMethod(x2, x3)
Cond_4773_1_createTree_InvokeMethod(x1, x2, x3, x4) → Cond_4773_1_createTree_InvokeMethod(x1, x3, x4)
3517_0_insert_GT(x1, x2) → 3517_0_insert_GT(x1)
Combined rules. Obtained 1 rules for P and 13 rules for R.
Finished conversion. Obtained 1 rules for P and 13 rules for R. System has predefined symbols.
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
(0) -> (1), if ((x3[0] > x0[0] →* TRUE)∧(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])) →* java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1])))∧(x3[0] →* x3[1]))
(1) -> (0), if ((java.lang.Object(x1[1]) →* java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])))∧(x3[1] →* x3[0]))
(1) -> (2), if ((java.lang.Object(x1[1]) →* java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))))∧(x3[1] →* x3[2]))
(2) -> (3), if ((x3[2] <= x0[2] →* TRUE)∧(java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))) →* java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3]))))∧(x3[2] →* x3[3]))
(3) -> (0), if ((java.lang.Object(x2[3]) →* java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])))∧(x3[3] →* x3[0]))
(3) -> (2), if ((java.lang.Object(x2[3]) →* java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))))∧(x3[3] →* x3[2]))
(1) (>(x3[0], x0[0])=TRUE∧java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0]))=java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1]))∧x3[0]=x3[1] ⇒ 3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])≥NonInfC∧3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])≥COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])∧(UIncreasing(COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])), ≥))
(2) (>(x3[0], x0[0])=TRUE ⇒ 3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])≥NonInfC∧3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])≥COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])∧(UIncreasing(COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])), ≥))
(3) (0 ≥ 0 ⇒ (UIncreasing(COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [(2)bni_28]x2[0] + [bni_28]x1[0] + [bni_28]x0[0] ≥ 0∧[(-1)bso_29] ≥ 0)
(4) (0 ≥ 0 ⇒ (UIncreasing(COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [(2)bni_28]x2[0] + [bni_28]x1[0] + [bni_28]x0[0] ≥ 0∧[(-1)bso_29] ≥ 0)
(5) (0 ≥ 0 ⇒ (UIncreasing(COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])), ≥)∧[bni_28 + (-1)Bound*bni_28] + [(2)bni_28]x2[0] + [bni_28]x1[0] + [bni_28]x0[0] ≥ 0∧[(-1)bso_29] ≥ 0)
(6) (0 ≥ 0 ⇒ (UIncreasing(COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])), ≥)∧0 ≥ 0∧[(2)bni_28] ≥ 0∧[bni_28] ≥ 0∧[bni_28] ≥ 0∧[bni_28 + (-1)Bound*bni_28] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(-1)bso_29] ≥ 0)
(7) (>(x3[0], x0[0])=TRUE∧java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0]))=java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1]))∧x3[0]=x3[1]∧java.lang.Object(x1[1])=java.lang.Object(Gopher.Tree(x0[0]1, java.lang.Object(x1[0]1), x2[0]1))∧x3[1]=x3[0]1 ⇒ COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1])), x3[1])≥NonInfC∧COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1])), x3[1])≥3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])∧(UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥))
(8) (>(x3[0], x0[0])=TRUE ⇒ COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x0[0]1, java.lang.Object(x1[0]1), x2[0]1)), x2[0])), x3[0])≥NonInfC∧COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x0[0]1, java.lang.Object(x1[0]1), x2[0]1)), x2[0])), x3[0])≥3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[0]1, java.lang.Object(x1[0]1), x2[0]1)), x3[0])∧(UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥))
(9) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [(2)bni_30]x2[0] + [(2)bni_30]x2[0]1 + [bni_30]x1[0]1 + [bni_30]x0[0]1 + [bni_30]x0[0] ≥ 0∧[1 + (-1)bso_31] + [2]x2[0] + x0[0] ≥ 0)
(10) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [(2)bni_30]x2[0] + [(2)bni_30]x2[0]1 + [bni_30]x1[0]1 + [bni_30]x0[0]1 + [bni_30]x0[0] ≥ 0∧[1 + (-1)bso_31] + [2]x2[0] + x0[0] ≥ 0)
(11) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥)∧[(2)bni_30 + (-1)Bound*bni_30] + [(2)bni_30]x2[0] + [(2)bni_30]x2[0]1 + [bni_30]x1[0]1 + [bni_30]x0[0]1 + [bni_30]x0[0] ≥ 0∧[1 + (-1)bso_31] + [2]x2[0] + x0[0] ≥ 0)
(12) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥)∧0 ≥ 0∧[(2)bni_30] ≥ 0∧[(2)bni_30] ≥ 0∧[bni_30] ≥ 0∧[bni_30] ≥ 0∧[bni_30] ≥ 0∧[(2)bni_30 + (-1)Bound*bni_30] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[1] ≥ 0∧[1 + (-1)bso_31] ≥ 0∧[1] ≥ 0)
(13) (>(x3[0], x0[0])=TRUE∧java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0]))=java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1]))∧x3[0]=x3[1]∧java.lang.Object(x1[1])=java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2])))∧x3[1]=x3[2] ⇒ COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1])), x3[1])≥NonInfC∧COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1])), x3[1])≥3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])∧(UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥))
(14) (>(x3[0], x0[0])=TRUE ⇒ COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x2[0])), x3[0])≥NonInfC∧COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x2[0])), x3[0])≥3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[0])∧(UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥))
(15) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥)∧[(3)bni_30 + (-1)Bound*bni_30] + [(2)bni_30]x2[0] + [(2)bni_30]x2[2] + [bni_30]x1[2] + [bni_30]x0[2] + [bni_30]x0[0] ≥ 0∧[1 + (-1)bso_31] + [2]x2[0] + x0[0] ≥ 0)
(16) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥)∧[(3)bni_30 + (-1)Bound*bni_30] + [(2)bni_30]x2[0] + [(2)bni_30]x2[2] + [bni_30]x1[2] + [bni_30]x0[2] + [bni_30]x0[0] ≥ 0∧[1 + (-1)bso_31] + [2]x2[0] + x0[0] ≥ 0)
(17) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥)∧[(3)bni_30 + (-1)Bound*bni_30] + [(2)bni_30]x2[0] + [(2)bni_30]x2[2] + [bni_30]x1[2] + [bni_30]x0[2] + [bni_30]x0[0] ≥ 0∧[1 + (-1)bso_31] + [2]x2[0] + x0[0] ≥ 0)
(18) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])), ≥)∧0 ≥ 0∧[(2)bni_30] ≥ 0∧[(2)bni_30] ≥ 0∧[bni_30] ≥ 0∧[bni_30] ≥ 0∧[bni_30] ≥ 0∧[(3)bni_30 + (-1)Bound*bni_30] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[1] ≥ 0∧[1 + (-1)bso_31] ≥ 0∧[1] ≥ 0)
(19) (<=(x3[2], x0[2])=TRUE∧java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2])))=java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3])))∧x3[2]=x3[3] ⇒ 3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])≥NonInfC∧3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])≥COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])∧(UIncreasing(COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])), ≥))
(20) (<=(x3[2], x0[2])=TRUE ⇒ 3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])≥NonInfC∧3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])≥COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])∧(UIncreasing(COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])), ≥))
(21) (0 ≥ 0 ⇒ (UIncreasing(COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])), ≥)∧[(2)bni_32 + (-1)Bound*bni_32] + [(2)bni_32]x2[2] + [bni_32]x1[2] + [bni_32]x0[2] ≥ 0∧[(-1)bso_33] ≥ 0)
(22) (0 ≥ 0 ⇒ (UIncreasing(COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])), ≥)∧[(2)bni_32 + (-1)Bound*bni_32] + [(2)bni_32]x2[2] + [bni_32]x1[2] + [bni_32]x0[2] ≥ 0∧[(-1)bso_33] ≥ 0)
(23) (0 ≥ 0 ⇒ (UIncreasing(COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])), ≥)∧[(2)bni_32 + (-1)Bound*bni_32] + [(2)bni_32]x2[2] + [bni_32]x1[2] + [bni_32]x0[2] ≥ 0∧[(-1)bso_33] ≥ 0)
(24) (0 ≥ 0 ⇒ (UIncreasing(COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])), ≥)∧0 ≥ 0∧[(2)bni_32] ≥ 0∧[bni_32] ≥ 0∧[bni_32] ≥ 0∧[(2)bni_32 + (-1)Bound*bni_32] ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧0 ≥ 0∧[(-1)bso_33] ≥ 0)
(25) (<=(x3[2], x0[2])=TRUE∧java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2])))=java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3])))∧x3[2]=x3[3]∧java.lang.Object(x2[3])=java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0]))∧x3[3]=x3[0] ⇒ COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3]))), x3[3])≥NonInfC∧COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3]))), x3[3])≥3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])∧(UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥))
(26) (<=(x3[2], x0[2])=TRUE ⇒ COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])))), x3[2])≥NonInfC∧COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])))), x3[2])≥3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[2])∧(UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥))
(27) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥)∧[(4)bni_34 + (-1)Bound*bni_34] + [(4)bni_34]x2[0] + [(2)bni_34]x1[0] + [(2)bni_34]x0[0] + [bni_34]x1[2] + [bni_34]x0[2] ≥ 0∧[3 + (-1)bso_35] + [2]x2[0] + x1[0] + x0[0] + x1[2] + x0[2] ≥ 0)
(28) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥)∧[(4)bni_34 + (-1)Bound*bni_34] + [(4)bni_34]x2[0] + [(2)bni_34]x1[0] + [(2)bni_34]x0[0] + [bni_34]x1[2] + [bni_34]x0[2] ≥ 0∧[3 + (-1)bso_35] + [2]x2[0] + x1[0] + x0[0] + x1[2] + x0[2] ≥ 0)
(29) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥)∧[(4)bni_34 + (-1)Bound*bni_34] + [(4)bni_34]x2[0] + [(2)bni_34]x1[0] + [(2)bni_34]x0[0] + [bni_34]x1[2] + [bni_34]x0[2] ≥ 0∧[3 + (-1)bso_35] + [2]x2[0] + x1[0] + x0[0] + x1[2] + x0[2] ≥ 0)
(30) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥)∧0 ≥ 0∧[(4)bni_34] ≥ 0∧[(2)bni_34] ≥ 0∧[(2)bni_34] ≥ 0∧[bni_34] ≥ 0∧[bni_34] ≥ 0∧[(4)bni_34 + (-1)Bound*bni_34] ≥ 0∧0 ≥ 0∧[1] ≥ 0∧[1] ≥ 0∧[1] ≥ 0∧[1] ≥ 0∧[3 + (-1)bso_35] ≥ 0∧[1] ≥ 0)
(31) (<=(x3[2], x0[2])=TRUE∧java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2])))=java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3])))∧x3[2]=x3[3]∧java.lang.Object(x2[3])=java.lang.Object(Gopher.Tree(x0[2]1, x1[2]1, java.lang.Object(x2[2]1)))∧x3[3]=x3[2]1 ⇒ COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3]))), x3[3])≥NonInfC∧COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3]))), x3[3])≥3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])∧(UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥))
(32) (<=(x3[2], x0[2])=TRUE ⇒ COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(Gopher.Tree(x0[2]1, x1[2]1, java.lang.Object(x2[2]1))))), x3[2])≥NonInfC∧COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(Gopher.Tree(x0[2]1, x1[2]1, java.lang.Object(x2[2]1))))), x3[2])≥3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[2]1, x1[2]1, java.lang.Object(x2[2]1))), x3[2])∧(UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥))
(33) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥)∧[(6)bni_34 + (-1)Bound*bni_34] + [(4)bni_34]x2[2]1 + [(2)bni_34]x1[2]1 + [(2)bni_34]x0[2]1 + [bni_34]x1[2] + [bni_34]x0[2] ≥ 0∧[4 + (-1)bso_35] + [2]x2[2]1 + x1[2]1 + x0[2]1 + x1[2] + x0[2] ≥ 0)
(34) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥)∧[(6)bni_34 + (-1)Bound*bni_34] + [(4)bni_34]x2[2]1 + [(2)bni_34]x1[2]1 + [(2)bni_34]x0[2]1 + [bni_34]x1[2] + [bni_34]x0[2] ≥ 0∧[4 + (-1)bso_35] + [2]x2[2]1 + x1[2]1 + x0[2]1 + x1[2] + x0[2] ≥ 0)
(35) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥)∧[(6)bni_34 + (-1)Bound*bni_34] + [(4)bni_34]x2[2]1 + [(2)bni_34]x1[2]1 + [(2)bni_34]x0[2]1 + [bni_34]x1[2] + [bni_34]x0[2] ≥ 0∧[4 + (-1)bso_35] + [2]x2[2]1 + x1[2]1 + x0[2]1 + x1[2] + x0[2] ≥ 0)
(36) (0 ≥ 0 ⇒ (UIncreasing(3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])), ≥)∧0 ≥ 0∧[(4)bni_34] ≥ 0∧[(2)bni_34] ≥ 0∧[(2)bni_34] ≥ 0∧[bni_34] ≥ 0∧[bni_34] ≥ 0∧[(6)bni_34 + (-1)Bound*bni_34] ≥ 0∧0 ≥ 0∧[1] ≥ 0∧[1] ≥ 0∧[1] ≥ 0∧[1] ≥ 0∧[4 + (-1)bso_35] ≥ 0∧[1] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(3730_1_insert_InvokeMethod(x1, x2)) = 0
POL(3877_0_insert_Return) = 0
POL(java.lang.Object(x1)) = [1] + x1
POL(3964_0_insert_Return) = 0
POL(3880_0_insert_Return) = 0
POL(4020_0_insert_Return) = 0
POL(3737_1_insert_InvokeMethod(x1, x2)) = 0
POL(3430_0_INSERT_LOAD(x1, x2)) = [-1] + x1
POL(Gopher.Tree(x1, x2, x3)) = [2]x3 + x2 + x1
POL(COND_3430_0_INSERT_LOAD(x1, x2, x3)) = [-1] + x2
POL(>(x1, x2)) = 0
POL(COND_3430_0_INSERT_LOAD1(x1, x2, x3)) = [-1] + x2
POL(<=(x1, x2)) = 0
COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1])), x3[1]) → 3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])
COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3]))), x3[3]) → 3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])
3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0]) → COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])
COND_3430_0_INSERT_LOAD(TRUE, java.lang.Object(Gopher.Tree(x0[1], java.lang.Object(x1[1]), x2[1])), x3[1]) → 3430_0_INSERT_LOAD(java.lang.Object(x1[1]), x3[1])
3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2]) → COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])
COND_3430_0_INSERT_LOAD1(TRUE, java.lang.Object(Gopher.Tree(x0[3], x1[3], java.lang.Object(x2[3]))), x3[3]) → 3430_0_INSERT_LOAD(java.lang.Object(x2[3]), x3[3])
3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0]) → COND_3430_0_INSERT_LOAD(>(x3[0], x0[0]), java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(x1[0]), x2[0])), x3[0])
3430_0_INSERT_LOAD(java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2]) → COND_3430_0_INSERT_LOAD1(<=(x3[2], x0[2]), java.lang.Object(Gopher.Tree(x0[2], x1[2], java.lang.Object(x2[2]))), x3[2])
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
(0) -> (0), if ((java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x1[0], x2[0])))) →* java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x0[0]', x1[0]')), x2[0]'))))
3105_0_GOPHER_NONNULL(java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x0[0], x1[0])), x2[0]))) → 3105_0_GOPHER_NONNULL(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x1[0], x2[0])))))
3968_1_gopher_InvokeMethod(3173_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1))))), java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1))))) → 4022_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1)))))
3968_1_gopher_InvokeMethod(4022_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2))))))), java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(NULL, x0)), java.lang.Object(Gopher.Tree(x1, x2))))) → 4668_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2)))))))
3968_1_gopher_InvokeMethod(4668_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2))))))), java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x3, x4)), x5)), java.lang.Object(Gopher.Tree(x6, x7))))) → 4668_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2)))))))
3968_1_gopher_InvokeMethod(3173_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1))))), java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1)))))
3968_1_gopher_InvokeMethod(4022_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2))))))), java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(NULL, x0)), java.lang.Object(Gopher.Tree(x1, x2)))))
3968_1_gopher_InvokeMethod(4668_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2))))))), java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x3, x4)), x5)), java.lang.Object(Gopher.Tree(x6, x7)))))
3105_0_GOPHER_NONNULL(java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x0[0], x1[0])), x2[0]))) → 3105_0_GOPHER_NONNULL(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x1[0], x2[0])))))
3968_1_gopher_InvokeMethod(3173_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1))))), java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1)))))
3968_1_gopher_InvokeMethod(4022_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2))))))), java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(NULL, x0)), java.lang.Object(Gopher.Tree(x1, x2)))))
3968_1_gopher_InvokeMethod(4668_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2))))))), java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x3, x4)), x5)), java.lang.Object(Gopher.Tree(x6, x7)))))
3968_1_gopher_InvokeMethod(3173_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1))))), java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, x1)))))
3968_1_gopher_InvokeMethod(4022_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2))))))), java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(NULL, x0)), java.lang.Object(Gopher.Tree(x1, x2)))))
3968_1_gopher_InvokeMethod(4668_0_gopher_Return(java.lang.Object(Gopher.Tree(NULL, java.lang.Object(Gopher.Tree(x0, java.lang.Object(Gopher.Tree(x1, x2))))))), java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x3, x4)), x5)), java.lang.Object(Gopher.Tree(x6, x7)))))
3105_0_GOPHER_NONNULL(java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x0[0], x1[0])), x2[0]))) → 3105_0_GOPHER_NONNULL(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x1[0], x2[0])))))
3105_0_GOPHER_NONNULL(java.lang.Object(Gopher.Tree(java.lang.Object(Gopher.Tree(x0[0], x1[0])), x2[0]))) → 3105_0_GOPHER_NONNULL(java.lang.Object(Gopher.Tree(x0[0], java.lang.Object(Gopher.Tree(x1[0], x2[0])))))
POL(3105_0_GOPHER_NONNULL(x1)) = 2·x1
POL(Gopher.Tree(x1, x2)) = 2 + 2·x1 + x2
POL(java.lang.Object(x1)) = 2 + x1
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Boolean, Integer
(0) -> (1), if ((x1[0] >= 0 && x0[0] > x1[0] + 1 →* TRUE)∧(x0[0] →* x0[1])∧(x1[0] →* x1[1]))
(1) -> (0), if ((x0[1] →* x0[0])∧(x1[1] + 1 →* x1[0]))
(1) (&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1)))=TRUE∧x0[0]=x0[1]∧x1[0]=x1[1] ⇒ 4773_1_CREATETREE_INVOKEMETHOD(x0[0], x1[0])≥NonInfC∧4773_1_CREATETREE_INVOKEMETHOD(x0[0], x1[0])≥COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])∧(UIncreasing(COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])), ≥))
(2) (>=(x1[0], 0)=TRUE∧>(x0[0], +(x1[0], 1))=TRUE ⇒ 4773_1_CREATETREE_INVOKEMETHOD(x0[0], x1[0])≥NonInfC∧4773_1_CREATETREE_INVOKEMETHOD(x0[0], x1[0])≥COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])∧(UIncreasing(COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])), ≥))
(3) (x1[0] ≥ 0∧x0[0] + [-2] + [-1]x1[0] ≥ 0 ⇒ (UIncreasing(COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])), ≥)∧[(-1)bni_18 + (-1)Bound*bni_18] + [(-1)bni_18]x1[0] + [(2)bni_18]x0[0] ≥ 0∧[(-1)bso_19] ≥ 0)
(4) (x1[0] ≥ 0∧x0[0] + [-2] + [-1]x1[0] ≥ 0 ⇒ (UIncreasing(COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])), ≥)∧[(-1)bni_18 + (-1)Bound*bni_18] + [(-1)bni_18]x1[0] + [(2)bni_18]x0[0] ≥ 0∧[(-1)bso_19] ≥ 0)
(5) (x1[0] ≥ 0∧x0[0] + [-2] + [-1]x1[0] ≥ 0 ⇒ (UIncreasing(COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])), ≥)∧[(-1)bni_18 + (-1)Bound*bni_18] + [(-1)bni_18]x1[0] + [(2)bni_18]x0[0] ≥ 0∧[(-1)bso_19] ≥ 0)
(6) (x1[0] ≥ 0∧x0[0] ≥ 0 ⇒ (UIncreasing(COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])), ≥)∧[(3)bni_18 + (-1)Bound*bni_18] + [bni_18]x1[0] + [(2)bni_18]x0[0] ≥ 0∧[(-1)bso_19] ≥ 0)
(7) (COND_4773_1_CREATETREE_INVOKEMETHOD(TRUE, x0[1], x1[1])≥NonInfC∧COND_4773_1_CREATETREE_INVOKEMETHOD(TRUE, x0[1], x1[1])≥4773_1_CREATETREE_INVOKEMETHOD(x0[1], +(x1[1], 1))∧(UIncreasing(4773_1_CREATETREE_INVOKEMETHOD(x0[1], +(x1[1], 1))), ≥))
(8) ((UIncreasing(4773_1_CREATETREE_INVOKEMETHOD(x0[1], +(x1[1], 1))), ≥)∧[1 + (-1)bso_21] ≥ 0)
(9) ((UIncreasing(4773_1_CREATETREE_INVOKEMETHOD(x0[1], +(x1[1], 1))), ≥)∧[1 + (-1)bso_21] ≥ 0)
(10) ((UIncreasing(4773_1_CREATETREE_INVOKEMETHOD(x0[1], +(x1[1], 1))), ≥)∧[1 + (-1)bso_21] ≥ 0)
(11) ((UIncreasing(4773_1_CREATETREE_INVOKEMETHOD(x0[1], +(x1[1], 1))), ≥)∧0 = 0∧0 = 0∧[1 + (-1)bso_21] ≥ 0)
POL(TRUE) = 0
POL(FALSE) = 0
POL(4980_0_insert_Load(x1)) = [-1]
POL(3517_0_insert_GT(x1)) = [-1]
POL(4020_0_insert_Return) = [-1]
POL(3737_1_insert_InvokeMethod(x1)) = [-1]
POL(3877_0_insert_Return) = [-1]
POL(3880_0_insert_Return) = [-1]
POL(3964_0_insert_Return) = [-1]
POL(3730_1_insert_InvokeMethod(x1)) = [-1]
POL(4773_1_CREATETREE_INVOKEMETHOD(x1, x2)) = [-1] + [-1]x2 + [2]x1
POL(COND_4773_1_CREATETREE_INVOKEMETHOD(x1, x2, x3)) = [-1] + [-1]x3 + [2]x2
POL(&&(x1, x2)) = [-1]
POL(>=(x1, x2)) = [-1]
POL(0) = 0
POL(>(x1, x2)) = [-1]
POL(+(x1, x2)) = x1 + x2
POL(1) = [1]
COND_4773_1_CREATETREE_INVOKEMETHOD(TRUE, x0[1], x1[1]) → 4773_1_CREATETREE_INVOKEMETHOD(x0[1], +(x1[1], 1))
4773_1_CREATETREE_INVOKEMETHOD(x0[0], x1[0]) → COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])
4773_1_CREATETREE_INVOKEMETHOD(x0[0], x1[0]) → COND_4773_1_CREATETREE_INVOKEMETHOD(&&(>=(x1[0], 0), >(x0[0], +(x1[0], 1))), x0[0], x1[0])
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Boolean, Integer
!= | ~ | Neq: (Integer, Integer) -> Boolean |
* | ~ | Mul: (Integer, Integer) -> Integer |
>= | ~ | Ge: (Integer, Integer) -> Boolean |
-1 | ~ | UnaryMinus: (Integer) -> Integer |
| | ~ | Bwor: (Integer, Integer) -> Integer |
/ | ~ | Div: (Integer, Integer) -> Integer |
= | ~ | Eq: (Integer, Integer) -> Boolean |
~ | Bwxor: (Integer, Integer) -> Integer | |
|| | ~ | Lor: (Boolean, Boolean) -> Boolean |
! | ~ | Lnot: (Boolean) -> Boolean |
< | ~ | Lt: (Integer, Integer) -> Boolean |
- | ~ | Sub: (Integer, Integer) -> Integer |
<= | ~ | Le: (Integer, Integer) -> Boolean |
> | ~ | Gt: (Integer, Integer) -> Boolean |
~ | ~ | Bwnot: (Integer) -> Integer |
% | ~ | Mod: (Integer, Integer) -> Integer |
& | ~ | Bwand: (Integer, Integer) -> Integer |
+ | ~ | Add: (Integer, Integer) -> Integer |
&& | ~ | Land: (Boolean, Boolean) -> Boolean |
Integer